fmt.readRune.buf (field)
8 uses
fmt (current package)
scan.go#L306: buf [utf8.UTFMax]byte // used only inside ReadRune
scan.go#L337: r.buf[0], err = r.readByte()
scan.go#L341: if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case
scan.go#L342: rr = rune(r.buf[0])
scan.go#L349: for n = 1; !utf8.FullRune(r.buf[:n]); n++ {
scan.go#L350: r.buf[n], err = r.readByte()
scan.go#L359: rr, size = utf8.DecodeRune(r.buf[:n])
scan.go#L361: copy(r.pendBuf[r.pending:], r.buf[size:n])
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)